Life's random bits By b1thunt3r (aka Ishan Jain)…
IE specific CSS

IE specific CSS

Ishan jain
Was experimenting a little the other day, and found a little hack for CSS, it only effects IE and leaves FF alone.

CSS

* div .test {
   background-color: black;
}

HTML

<div class="test">Test</div>

This will change the background color only in IE, and not in FF. It is useful if your layout is showing different in both browsers…